Make GtkRecentManager use standard icon names for themed icons
authorMatthias Clasen <mclasen@redhat.com>
Wed, 13 Oct 2010 14:18:03 +0000 (10:18 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 13 Oct 2010 14:18:03 +0000 (10:18 -0400)
gtk/gtkrecentmanager.c

index 5f5c01204638934e351c0c6f55e0c2c2bf1e45ea..c14f9e5af44f6bed58718e4224354fecf7a31aae 100644 (file)
@@ -1912,9 +1912,9 @@ gtk_recent_info_get_icon (GtkRecentInfo *info,
     {
       if (info->mime_type &&
           strcmp (info->mime_type, "x-directory/normal") == 0)
-        retval = get_icon_fallback (GTK_STOCK_DIRECTORY, size);
+        retval = get_icon_fallback ("folder", size);
       else
-        retval = get_icon_fallback (GTK_STOCK_FILE, size);
+        retval = get_icon_fallback ("document-x-generic", size);
     }
   
   return retval;